This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
~Tate Quetgerobergakoi 27.Oct.03 09:32 PM a Web browser Domino Designer6.0.1 CF1Windows 2000
I am seeing some *very* unusual behavior when writing a messagebox command. I always enclose my messagebox code within parentheses as a matter of personal style, but when I attempted to do so on a particular line of code within a subroutine, the script will not compile. When I remove the "offending" parentheses, the script compiles just fine. Here's the code:
returnStringMessage = "Entries for the following per diem entries could not be completely processed due to date errors." +Chr(10)+"Please adjust them individually."+Chr(13)+Chr(13)
returnStringMessage=returnStringMessage+returnString
Messagebox (returnStringMessage,64,"Entry Errors")
And here's the odd error message that shows up in the error line:
[subname]: 52: Unexpected: ,;Expected: Operator;)
Has anyone else seen anything like this? I use messageboxes throughout this application as well as other applications, and this is the first time I've observed this behavior in Designer.